home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / TestRandom.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  463 b   |  30 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestRandom.h
  3.  
  4.     Contains:    Declaration for TTestRandom class
  5.  
  6.     Copyright:    © 1991-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __TESTRANDOM__
  11. #define __TESTRANDOM__
  12.  
  13. #ifndef __TESTCLASS__
  14. #include "TestClass.h"
  15. #endif
  16. #ifndef __LIBRARYMANAGERCLASSES__
  17. #include <LibraryManagerClasses.h>
  18. #endif
  19.  
  20. #define kTTestRandomID    kTestToolPrefix "TTestRandom,1.2"
  21.  
  22. class TTestRandom : public TTestTool
  23. {
  24.     BodyTest(Random, FastRandom);
  25. };
  26.  
  27. #endif
  28.  
  29.  
  30.